// This code masks the last 4 digits of the SSN
if (Event.Fields['Employee.EmployeePerson.SSN'] != null) {
Event.Fields['Employee.EmployeePerson.SSN'] = "XXX-XX-" + Event.Fields['Employee.EmployeePerson.SSN'].substring(5, 9);
}
-----------------------------------------------------------------------------------------------
// This code Parses the date to the desired format:
if (Event.Fields['Engine.SDSAFSA.EffectiveDate'] != null)
{
Event.Fields['PlanYear'] = DateTime.Parse(Event.Fields['Engine.SDSAFSA.EffectiveDate']).ToString("MM/yy");
}
-----------------------------------------------------------------------------------------------
// This code will keep a waived product from showing on a form unless it has been dropped
if (Event.Fields['Product.' + i] == 'Waived' && !Event.Fields['Engine.Application' + (i + 1) + '.OldPayer'] && !Event.Fields['Engine.Application' + (i+1) + '.Insured1.OldPayer']) continue;
-----------------------------------------------------------------------------------------------
// This function will increment the variable when a statement is true
var d=0;
if (Event.Fields['PretaxCost.' + i] != null && Event.Fields['PretaxCost.' + i] != '0.00') d++;
-----------------------------------------------------------------------------------------------
// This function will find the value of c for any ApplicationX in relation to the PlanX for any Product
var c=0;
while (Event.Fields['Plan.' + i] != Event.Fields['Engine.Application' + c + '.PlanName'] && Event.Fields['Plan.' + i] !=null && c < 50)
{
c++;
}
-----------------------------------------------------------------------------------------------
// This code will change the status field based on ProductName
if (Event.Fields['Engine.Application' + c + '.EmployeeInsured.OldPayerProductName'] == 'Accident Plus' && Event.Fields['Engine.Application' + c + '.EmployeeInsured.PayerProductName'] == 'USAble Accident Elite Basic') Event.Fields['Status.' + i] = 'Changed';
-----------------------------------------------------------------------------------------------
// This code will calculate the Monthly Prior Cost for a Product
(Event.Fields['Engine.Application' + c + '.EmployeeInsured.OldCoverageEmployeeCost'] * Event.Fields['Engine.Employee.DeductionFrequencyID']) / 12;
-----------------------------------------------------------------------------------------------
// This code will Concatenate the Increased Benefit Amount to the Description
if (Event.Fields['IncreaseBenefitAmt.' + i] > 0) Event.Fields['Description.' + i] = (Event.Fields['Description.' + i] + ' ' + Event.Fields['IncreaseBenefitAmt.' + i]);
-----------------------------------------------------------------------------------------------
// This code will show the Pre or Post Tax cost for a Product that has an application amount that is not guaranteed issue
if (Event.Fields['PosttaxCost.' + i] == null && Event.Fields['PretaxCost.' + i] == null)
{
if (Event.Fields['Engine.Application' + c + '.Section125'] == 'True') Event.Fields['PretaxCost.' + j] = Event.Fields['IncreaseEmployeeCost.' + i];
else Event.Fields['PosttaxCost.' + j] = Event.Fields['IncreaseEmployeeCost.' + i];
}